home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msutil / msutil.h < prev    next >
Text File  |  1987-04-13  |  509b  |  25 lines

  1. /*
  2.  *  msutil.h
  3.  *
  4.  *  Constant, macro and function definitions for use with routines in the 
  5.  *  msutil.c utility library.
  6.  */
  7.  
  8. /* logical values */
  9.  
  10. #if !defined(TRUE)
  11.    #define TRUE            1
  12.    #define FALSE           0
  13. #endif
  14.  
  15. /* macro definitions */
  16.  
  17. #define scrloc(r, c)       160*((r)-1)+2*((c)-1)
  18.  
  19. /* function declarations */
  20.  
  21. unsigned getds();                      /* return the current data segment */
  22. char     *concat();                    /* concatenate strings */
  23.  
  24.  
  25.